home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-01 | 2.0 KB | 77 lines | [TEXT/MPS ] |
- ;
- ; File: FileTransferTools.a
- ;
- ; Contains: CommToolbox File Transfer Tools Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Release: Universal Interfaces 3.0d3 on Copland DR1
- ;
- ; Copyright: © 1984-1996 by Apple Computer, Inc. All rights reserved.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
- IF &TYPE('__FILETRANSFERTOOLS__') = 'UNDEFINED' THEN
- __FILETRANSFERTOOLS__ SET 1
-
- IF &TYPE('__DIALOGS__') = 'UNDEFINED' THEN
- include 'Dialogs.a'
- ENDIF
- IF &TYPE('__FILETRANSFERS__') = 'UNDEFINED' THEN
- include 'FileTransfers.a'
- ENDIF
- IF FOR_SYSTEM7_ONLY THEN
-
- ; DEFs
- fdefType EQU 'fdef'
- fsetType EQU 'fset'
- fvalType EQU 'fval'
- flocType EQU 'floc'
- fscrType EQU 'fscr'
- fbndType EQU 'fbnd'
- fverType EQU 'vers'
-
- ; control
- ftInitMsg EQU 0
- ftDisposeMsg EQU 1
- ftSuspendMsg EQU 2
- ftResumeMsg EQU 3
- ftMenuMsg EQU 4
- ftEventMsg EQU 5
- ftActivateMsg EQU 6
- ftDeactivateMsg EQU 7
- ftGetErrorStringMsg EQU 8
- ftAbortMsg EQU 52
- ftStartMsg EQU 100
- ftExecMsg EQU 102
- ftSendMsg EQU 103
- ftReceiveMsg EQU 104 ; setup
- ftSpreflightMsg EQU 0
- ftSsetupMsg EQU 1
- ftSitemMsg EQU 2
- ftSfilterMsg EQU 3
- ftScleanupMsg EQU 4 ; validate
- ftValidateMsg EQU 0
-
- ftDefaultMsg EQU 1 ; scripting
- ftMgetMsg EQU 0
- ftMsetMsg EQU 1 ; localization
- ftL2English EQU 0
- ftL2Intl EQU 1
- FTSetupStruct RECORD 0
- theDialog ds.l 1 ; offset: $0 (0) ; the dialog form the application
- count ds.w 1 ; offset: $4 (4) ; first appended item
- theConfig ds.l 1 ; offset: $6 (6) ; the config record to setup
- procID ds.w 1 ; offset: $A (10) ; procID of the tool
- sizeof EQU * ; size: $C (12)
- ENDR
- ; typedef struct FTSetupStruct * FTSetupPtr
-
- ENDIF
- ENDIF ; __FILETRANSFERTOOLS__
-
-